home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / splot170.zip / demo / logo.spt < prev    next >
Text File  |  1994-07-13  |  238b  |  17 lines

  1.  
  2. #include <splot.h>
  3. main()
  4.    {
  5.    int i;
  6.    newpath();
  7.    translate(10,10);
  8.    text(0,0,"      SPLOT");
  9.    for (i=0;i < 360;i += 30)
  10.       {
  11.       gsave();
  12.       rotate(i);
  13.       stroke();
  14.       grestore();
  15.       }
  16.    }
  17.